This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: How to set a field's value on Form before it is opened on the web ~Lorraine Desgerothernivu 16.Oct.03 11:03 AM a Web browser Applications Development 6.0.1Windows 2000
I thought the same. So, I tried
/.../db.nsf/$ERROR?OpenForm&errMsg=Test"
Then on the forms event WebQueryOpen I call an agent to examine the query string.
The code of the agent is about like this
Dim ses as New NotesSession
Dim doc as NotesDocument
Set doc = ses.DocumentContext
Usually then doc contains fields like QUERY_STRING or QUERY_STRING_DECODED.
But in this case it already contains the form processed. So I just have the fields which are on the form and no query string where I could get the information from.
Somewhere before it should be able to get the query string but where?
If I take the HttpURL from doc it is also not the url which I want.